Show AllShow All

TRIMMEAN

See Also

Returns the mean of the interior of a data set. TRIMMEAN calculates the mean taken by excluding a percentage of data points from the top and bottom tails of a data set. You can use this function when you wish to exclude outlying data from your analysis.

Syntax

TRIMMEAN(array,percent)

Array    is the array or range of values to trim and average.

Percent    is the fractional number of data points to exclude from the calculation. For example, if percent = 0.2, 4 points are trimmed from a data set of 20 points (20 x 0.2): 2 from the top and 2 from the bottom of the set.

Remarks

Example

The example may be easier to understand if you copy it to a blank worksheet.

ShowHow?

 
1
2
3
4
5
6
7
8
9
10
11
12
A
Data
4
5
6
7
2
3
4
5
1
2
3
Formula Description (Result)
=TRIMMEAN(A2:A12,0.2) Mean of the interior of a data set above, with 20 percent excluded from calculation (3.777778)